home *** CD-ROM | disk | FTP | other *** search
- /* GadTools layout toolkit
- **
- ** Copyright © 1993-1995 by Olaf `Olsen' Barthel
- ** Freely distributable.
- */
-
- #include "gtlayout_global.h"
-
- VOID LIBENT
- LT_BeginRefresh(REG(a0) LayoutHandle *handle)
- {
- if(handle)
- {
- GT_BeginRefresh(handle -> Window);
-
- LTP_DrawGroup(handle,handle -> TopGroup);
- }
- }
-
-
- /*****************************************************************************/
-
-
- VOID LIBENT
- LT_EndRefresh(REG(a0) LayoutHandle *handle,REG(d0) BOOL complete)
- {
- if(handle)
- GT_EndRefresh(handle -> Window,complete);
- }
-